RepeatUntil
Type
control structure
Summary
Executes a list of statements until a condition becomes true.
Syntax
repeat until <Condition>
<StatementList>
end repeat
Description
Use the repeat until Condition structure to execute a set of statements repeatedly, until the Condition evaluates to true.
Parameters
Name | Type | Description |
---|---|---|
Condition | bool | An expression which evaluates to a boolean. |
StatementList | A set of statements. |